home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / util / libs / ppclibemu.lha / tests / hello_world.c next >
Encoding:
C/C++ Source or Header  |  1998-12-20  |  95 b   |  9 lines

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. main()
  5. {
  6.   printf("Hello %s!\n","World");
  7.   exit(0);
  8. }
  9.